home *** CD-ROM | disk | FTP | other *** search
/ The National Palace Museum Experience / The National Palace Museum Experience.iso / Programs / Guide.dxr / 00241_control handlers.ls < prev    next >
Encoding:
Text File  |  1998-11-19  |  5.8 KB  |  208 lines

  1. global gsbmouseupslist, gsbmousedownslist, sbcontentsprite, sbhiliterect, scrollpos, scrolllinesize, barsprite, leftofscroll, rightofscroll, totalscroll, topofscroll, botofscroll, maxscroll, lightsprite, objectpict
  2.  
  3. on initsbcontrols
  4.   set gsbmousedownslist to []
  5.   set gsbmouseupslist to []
  6.   setAt(gsbmouseupslist, sbhiliterect, 0)
  7.   setAt(gsbmousedownslist, sbhiliterect, 0)
  8. end
  9.  
  10. on addsbcontrol channel, chotspots, cactions, whichway
  11.   if not listp(chotspots) or not listp(cactions) then
  12.     return #badcontrol
  13.   end if
  14.   if count(chotspots) <> count(cactions) then
  15.     return #badcontrol
  16.   end if
  17.   if whichway = #down then
  18.     setAt(gsbmousedownslist, channel, [chotspots, cactions])
  19.   else
  20.     setAt(gsbmouseupslist, channel, [chotspots, cactions])
  21.   end if
  22. end
  23.  
  24. on deletesbcontrol channel, whichway
  25.   if (whichway = #up) or (whichway = #both) then
  26.     setAt(gsbmouseupslist, channel, 0)
  27.   end if
  28.   if (whichway = #down) or (whichway = #both) then
  29.     setAt(gsbmousedownslist, channel, 0)
  30.   end if
  31. end
  32.  
  33. on hitsbcontrol whichway
  34.   set me to the clickOn
  35.   set hitpoint to point(the mouseH - the left of sprite me, the mouseV - the top of sprite me)
  36.   if whichway = #down then
  37.     set controlslist to gsbmousedownslist
  38.     puppetSound(2, "Button")
  39.   else
  40.     set controlslist to gsbmouseupslist
  41.   end if
  42.   set mycontrol to getAt(controlslist, me)
  43.   if not listp(mycontrol) then
  44.     return #notcontrol
  45.   end if
  46.   if count(mycontrol) < 2 then
  47.     return #notcontrol
  48.   end if
  49.   set hitlist to getAt(mycontrol, 1)
  50.   if not listp(hitlist) then
  51.     return #notcontrol
  52.   end if
  53.   set actionlist to getAt(mycontrol, 2)
  54.   if not listp(actionlist) then
  55.     return #notcontrol
  56.   end if
  57.   if (count(actionlist) <> count(hitlist)) or (count(hitlist) = 0) then
  58.     return #badcontrol
  59.   end if
  60.   repeat with i = 1 to count(hitlist)
  61.     if inside(hitpoint, getAt(hitlist, i)) then
  62.       puppetSprite(sbhiliterect, 0)
  63.       do(getAt(actionlist, i))
  64.       exit repeat
  65.     end if
  66.   end repeat
  67. end
  68.  
  69. on checksbrollover whichway
  70.   set noroll to 1
  71.   repeat with i = sbhiliterect - 1 down to 1
  72.     if rollOver(i) then
  73.       if (listp(getAt(gsbmouseupslist, i)) and ((whichway = #up) or (whichway = #both))) or (listp(getAt(gsbmousedownslist, i)) and ((whichway = #down) or (whichway = #both))) then
  74.         hilitesbcontrol(i, whichway)
  75.         set noroll to 0
  76.         exit repeat
  77.       end if
  78.     end if
  79.   end repeat
  80.   if noroll then
  81.     set the locH of sprite sbhiliterect to -1000
  82.     set the visible of sprite objectpict to 0
  83.     set the visible of sprite lightsprite to 0
  84.   end if
  85. end
  86.  
  87. on hilitesbcontrol contnum, whichway
  88.   set norect to 1
  89.   if (whichway = #up) or (whichway = #both) then
  90.     set upcont to getAt(gsbmouseupslist, contnum)
  91.     if not listp(upcont) then
  92.       set uprects to []
  93.     end if
  94.     if count(upcont) < 2 then
  95.       set uprects to []
  96.     end if
  97.     if voidp(uprects) then
  98.       set uprects to getAt(upcont, 1)
  99.     else
  100.       nothing()
  101.     end if
  102.   else
  103.     set uprects to []
  104.   end if
  105.   if (whichway = #down) or (whichway = #both) then
  106.     set downcont to getAt(gsbmousedownslist, contnum)
  107.     if not listp(downcont) then
  108.       set downrects to []
  109.     end if
  110.     if count(downcont) < 2 then
  111.       set downrects to []
  112.     end if
  113.     if voidp(downrects) then
  114.       set downrects to getAt(downcont, 1)
  115.     else
  116.       nothing()
  117.     end if
  118.   else
  119.     set downrects to []
  120.   end if
  121.   set rectlist to combo(uprects, downrects)
  122.   set hoff to the left of sprite contnum
  123.   set voff to the top of sprite contnum
  124.   set where to point(the mouseH - hoff, the mouseV - voff)
  125.   set mouseposition to point(the mouseH, the mouseV)
  126.   repeat with r in rectlist
  127.     if inside(where, r) then
  128.       set order to getOne(rectlist, r)
  129.       set smallpict to "B" & char 2 to 7 of word 2 of getAt(actslist, order) & "1"
  130.       if the number of member smallpict > 0 then
  131.         set the visible of sprite objectpict to 1
  132.         set the visible of sprite lightsprite to 1
  133.         updateStage()
  134.         swapmember(objectpict, smallpict, 1)
  135.       else
  136.         set the visible of sprite objectpict to 0
  137.         set the visible of sprite lightsprite to 0
  138.       end if
  139.       spriteBox(sbhiliterect, getAt(r, 1) + hoff, getAt(r, 2) + voff, getAt(r, 3) + hoff, getAt(r, 4) + voff)
  140.       updateStage()
  141.       set norect to 0
  142.       exit repeat
  143.     end if
  144.   end repeat
  145.   if norect or not rollOver(sbcontentsprite) then
  146.     set the locH of sprite sbhiliterect to -1000
  147.     set the visible of sprite objectpict to 0
  148.     set the visible of sprite lightsprite to 0
  149.     updateStage()
  150.   end if
  151. end
  152.  
  153. on combo alist, anotherlist
  154.   set rectlist to []
  155.   repeat with r in alist
  156.     if ilk(r, #rect) then
  157.       add(rectlist, r)
  158.     end if
  159.   end repeat
  160.   repeat with r in anotherlist
  161.     if ilk(r, #rect) then
  162.       add(rectlist, r)
  163.     end if
  164.   end repeat
  165.   return rectlist
  166. end
  167.  
  168. on initscrollv
  169.   set scrollpos to 1
  170.   set scrolllinesize to 19
  171.   set barsprite to 108
  172.   set sbcontentsprite to 109
  173.   set topofscroll to the top of sprite barsprite - 1
  174.   set botofscroll to the bottom of sprite barsprite
  175.   set totalscroll to the height of member the memberNum of sprite sbcontentsprite of castLib "Guide"
  176.   set maxscroll to totalscroll - (botofscroll - topofscroll)
  177.   setscrollboxv()
  178. end
  179.  
  180. on setscrollboxv
  181.   set the locV of sprite sbcontentsprite to topofscroll - scrollpos
  182.   updateStage()
  183. end
  184.  
  185. on scrolldown
  186.   set scrollpos to scrollpos + scrolllinesize
  187.   if scrollpos > maxscroll then
  188.     set scrollpos to maxscroll
  189.   else
  190.     set arrowcursor to the number of member "down"
  191.     set arrowcursormask to the number of member "downMask"
  192.     cursor([arrowcursor, arrowcursormask])
  193.   end if
  194.   setscrollboxv()
  195. end
  196.  
  197. on scrollup
  198.   set scrollpos to scrollpos - scrolllinesize
  199.   if scrollpos < 1 then
  200.     set scrollpos to 1
  201.   else
  202.     set arrowcursor to the number of member "up"
  203.     set arrowcursormask to the number of member "upMask"
  204.     cursor([arrowcursor, arrowcursormask])
  205.   end if
  206.   setscrollboxv()
  207. end
  208.